home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / Perl / bin / pod2text < prev    next >
Text File  |  1990-01-01  |  175b  |  13 lines

  1. #!/gg/bin/perl
  2.     eval 'exec /gg/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use Pod::Text;
  6.  
  7. if(@ARGV) {
  8.     pod2text($ARGV[0]);
  9. } else {
  10.     pod2text("<&STDIN");
  11. }
  12.  
  13.